home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-11 | 726 b | 35 lines | [TEXT/MPS ] |
- // UAEClientCommand.h
- // Copyright © 1991 by Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the TAEClientCommand class, the client
- // Apple event class which makes the query over the network to the server
-
-
- #ifndef __AECLIENTCOMMAND__
- #define __AECLIENTCOMMAND__
-
- #ifndef __AEGESTALT__
- #include "UAEGestalt.h"
- #endif
-
- #ifndef __AEDOCUMENT__
- #include "UAEDocument.h"
- #endif
-
-
- class TAEDocument;
-
- class TAEClientCommand : public TClientCommand{
- public:
- TAEClientCommand();
- virtual pascal void IAEClientCommand(CommandNumber,
- TAEDocument*,
- AEEventID);
-
- virtual pascal void ProcessReply(TAppleEvent*);
-
- // FIELDS
- TAEDocument* fDocument;
- };
-
- #endif